home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / string / RCS / strchr.c,v < prev    next >
Text File  |  1992-03-27  |  2KB  |  125 lines

  1. head     1.3;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.3
  10. date     92.03.27.13.29.29;  author rab;  state Exp;
  11. branches ;
  12. next     1.2;
  13.  
  14. 1.2
  15. date     89.03.22.16.06.40;  author rab;  state Exp;
  16. branches ;
  17. next     1.1;
  18.  
  19. 1.1
  20. date     88.04.25.13.25.42;  author ouster;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @@
  27.  
  28.  
  29. 1.3
  30. log
  31. @A few little optimizations.
  32. @
  33. text
  34. @/* 
  35.  * strchr.c --
  36.  *
  37.  *    Source code for the "strchr" library routine.
  38.  *
  39.  * Copyright 1988 Regents of the University of California
  40.  * Permission to use, copy, modify, and distribute this
  41.  * software and its documentation for any purpose and without
  42.  * fee is hereby granted, provided that the above copyright
  43.  * notice appear in all copies.  The University of California
  44.  * makes no representations about the suitability of this
  45.  * software for any purpose.  It is provided "as is" without
  46.  * express or implied warranty.
  47.  */
  48.  
  49. #ifndef lint
  50. static char rcsid[] = "$Header: /sprite/src/lib/c/string/RCS/strchr.c,v 1.2 89/03/22 16:06:40 rab Exp Locker: rab $ SPRITE (Berkeley)";
  51. #endif /* not lint */
  52.  
  53. #include <string.h>
  54.  
  55. /*
  56.  *----------------------------------------------------------------------
  57.  *
  58.  * strchr --
  59.  *
  60.  *    Locate the first appearance of a character in a string.
  61.  *
  62.  * Results:
  63.  *    The return value is the address of the first appearance
  64.  *    in string of c.  If c doesn't appear in string then 0
  65.  *    is returned.
  66.  *
  67.  * Side effects:
  68.  *    None.
  69.  *
  70.  *----------------------------------------------------------------------
  71.  */
  72.  
  73. char *
  74. strchr(string, c)
  75.     register char *string;        /* String to search. */
  76.     register int c;            /* Desired character. */
  77. {
  78.     register int x;
  79.  
  80.     while (1) {
  81.     x = *string++;
  82.     if (x == c) {
  83.         return string - 1;
  84.     }
  85.     if (x == 0) {
  86.         return (char *) 0;
  87.     }
  88.     }
  89. }
  90. @
  91.  
  92.  
  93. 1.2
  94. log
  95. @*** empty log message ***
  96. @
  97. text
  98. @d17 1
  99. a17 1
  100. static char rcsid[] = "$Header: /sprite/src/lib/c/string/RCS/strchr.c,v 1.1 88/04/25 13:25:42 ouster Exp Locker: rab $ SPRITE (Berkeley)";
  101. d43 1
  102. a43 1
  103.     register char c;            /* Desired character. */
  104. d45 2
  105. d48 3
  106. a50 2
  107.     if (*string == c) {
  108.         return string;
  109. d52 1
  110. a52 1
  111.     if (*string++ == 0) {
  112. @
  113.  
  114.  
  115. 1.1
  116. log
  117. @Initial revision
  118. @
  119. text
  120. @d17 4
  121. a20 2
  122. static char rcsid[] = "$Header: proto.c,v 1.2 88/03/11 08:39:08 ouster Exp $ SPRITE (Berkeley)";
  123. #endif not lint
  124. @
  125.